This forum is closed to new posts and
responses. Individual names altered for privacy purposes. The information contained in this website is provided for informational purposes only and should not be construed as a forum for customer support requests. Any customer support requests should be directed to the official HCL customer support channels below:
Since the preferences cannot be opened and with the errors that you're encountering, it's possible that your calendar profile got corrupted. Calendar profile contains all the user's settings stored in the preferences, as well as the mail rules and blocked sender's list.
You can use the Admin Tool to recreate the calendar profile or you can also use a Lotus script. However, please be reminded that deleting the Calendar Profile document also results in the loss of all user settings found in the Preferences since it will be restored to default, so you might want to take note of all the user's preferences so that you could restore it easily. Also, make sure to disable the user's mail rules before recreating the calendar profile.
Note: Make sure you are logged in as the user with the user's id after deleting the calendar profile. If not, the mail file owner field will change to whoever deleted the calendar profile. If you're not able to sign in as the user, make sure to check the Mail File Owner field under Preferences when done and correct if needed.
Lotus Script:
Dim session As New NotesSession
Dim db As NotesDatabase
Dim doc As NotesDocument
Set db=session.CurrentDatabase
Set doc=db.GetProfileDocument("CalendarProfile")
Call doc.remove(True)
If doc Is Nothing Then
MsgBox "Profile Document Was Successfully Removed"
Else
MsgBox "Profile Document WAS NOT Removed",48
End if